Method: Polars::Expr#<=

Defined in:
lib/polars/expr.rb

#<=(other) ⇒ Expr

Less than or equal.

Returns:

[View source]

99
100
101
# File 'lib/polars/expr.rb', line 99

def <=(other)
  _from_rbexpr(_rbexpr.lt_eq(_to_expr(other)._rbexpr))
end